home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d1 / infop146.arc / PAGE_09.INF < prev    next >
Text File  |  1991-06-04  |  6KB  |  93 lines

  1.   On this page, you will get alot of general information about DOS.
  2.  
  3. DOS version: Your current version. If DR DOS is detected, you also see it's
  4.              version.
  5. OEM serial number: Some versions of DOS support a number.
  6. System date/time: The current date and time as given by DOS. It is shown
  7.                   in the format of your current country settings.
  8. Command load paragraph: The memory segment where programs are loaded. The
  9.                         lower this number is, the more memory you have
  10.                         available.
  11. Ctrl-C check: This is the setting of the BREAK command. When OFF, you can
  12.               stop a DOS command when it is print to the screen. When ON,
  13.               you can stop it during copies and disk reads.
  14. Disk verify: This is the setting of the VERIFY command. When ON, DOS will
  15.              attempt to re-read any data written to disk. It only checks if
  16.              it can read it. It does NOT compare what it reads back with
  17.              what it wrote.
  18. Switch prefix character: For DOS commands (and some programs) this is the
  19.                          character you use to let a program know that it is
  20.                          being given a command (like /H). Many programs are
  21.                          hard coded to use the '/' character. Many Unix
  22.                          users prefer using '-'. When the prefix is set to
  23.                          '-', you can use '/' in paths, instead of '\'.
  24. \DEV\ prefix: When you access devices such as PRN or LPT1, you can also use
  25.               \DEV\PRN. This was probably to make it work similar to Unix.
  26. Reset boot: There is a flag in the BIOS data area that lets the computer
  27.             know what to do when you hit CTL-ALT-DEL.
  28. Boot disk: The drive used to boot the computer. This is shown only for DOS
  29.            4 or newer.
  30. DOS flags: These are the memory address of special flags that let TSR's and
  31.            similar know when it is safe to make a DOS call while another
  32.            program is active.
  33. Printer echo: This is toggled by typing Ctl-P, or Ctl-PrtScr. When on, any
  34.               text output by DOS will be echoed to the printer.
  35. PrtSc status: This lets you know if Shift-PrtScr is available, and if the
  36.               last attempt was successfull.
  37. Memory allocation: When a program is loaded, it can request blocks of
  38.                    memory from DOS. There are 3 ways DOS will look for one:
  39.                    First fit: Start at the bottom of memory, and search
  40.                               forward until it finds one that is big enough
  41.                               or larger that what's requested.
  42.                    Best fit:  Search through all available blocks, and find
  43.                               the one closest to the size requested.
  44.                    Last fit:  Start at the top of memory, and search
  45.                               backward until it finds one that is big
  46.                               enough or larger than what's requested.
  47.                    The default is First fit, and outside of a running
  48.                    program, any other settings can confuse DOS.
  49. Buffers: These are the amount of BUFFERS allocated in CONFIG.SYS (or
  50.          defaulted to by DOS.)
  51.          DOS 4+ also supports up to 8 read-ahead buffers. When a disk is
  52.          being read, and the sector being read is immediately after the
  53.          one previously read, DOS will read up to 8 sectors immediatlely.
  54.          That way, if they are needed, they will come from the read-ahead
  55.          buffer, instead of the disk.
  56.          DOS 4+ also supports placing it's buffers in EMS memory. If so, it
  57.          will round the count UP to the next multiple of 30 (30 buffers
  58.          fit in each 16K EMS page.) If EMS is being used, INFOPLUS will
  59.          tell you which EMS handle is being used.
  60. File handles: Most current programs access files using what's called
  61.               'handles'. This is set by the FILES statement in your
  62.               CONFIG.SYS. Every program will have 5 of them used. These
  63.               are for CON, error device (always the screen,) PRN, AUX
  64.               (COM1), and NUL.
  65. File Control Blocks: An older method of access files used special blocks.
  66.                      These methods were superceeded by handles, although a
  67.                      few special functions still require using FCBs. The
  68.                      default by DOS is FCBS=4,0, and typically never needs
  69.                      changing.
  70.                      Under DOS 4, FCBs can be dangerous. If a disk drive
  71.                      partition is larger than 32 Megabytes, some of the
  72.                      values in the block can 'roll over' at the 32M mark.
  73.                      This can cause data to write in the wrong place! To
  74.                      prevent disaster, DOS 4 will attempt to load
  75.                      SHARE.EXE. SHARE translates FCBs into handles. It also
  76.                      increases the number of FCBs to 16,8. You can regain
  77.                      some memory by specifying FCBS=4,1 in your CONFIG.SYS.
  78.                      This prevents SHARE from increasing the size.
  79. Stacks: When an interrupt occurrs, DOS will select a stack that is used to
  80.         temporarily store data. This can sometimes cause problems with
  81.         programs. There are two values, the number of stacks, and the size.
  82.         If not STACKS=x,y is found in CONFIG.SYS, DOS will use 0,0 for a
  83.         PC/XT, and 9,128 for all others. You can regain memory by
  84.         specifying 0,0. This tells DOS to use the current program stack to
  85.         hold data.
  86. UMBs: Under MSDOS 5, Upper Memory Blocks (memory between 640K and 1M) can
  87.       be part of the memory allocation chain.
  88.  
  89. International information: This reports on various settings that programs
  90.                            can use so that data is displayed in a way that
  91.                            users in many countries are used to seeing it.
  92.  
  93.